home *** CD-ROM | disk | FTP | other *** search
-
- /*
- * (a) (C) 1990 by Adobe Systems Incorporated. All rights reserved.
- *
- * (b) If this Sample Code is distributed as part of the Display PostScript
- * System Software Development Kit from Adobe Systems Incorporated,
- * then this copy is designated as Development Software and its use is
- * subject to the terms of the License Agreement attached to such Kit.
- *
- * (c) If this Sample Code is distributed independently, then the following
- * terms apply:
- *
- * (d) This file may be freely copied and redistributed as long as:
- * 1) Parts (a), (d), (e) and (f) continue to be included in the file,
- * 2) If the file has been modified in any way, a notice of such
- * modification is conspicuously indicated.
- *
- * (e) PostScript, Display PostScript, and Adobe are registered trademarks of
- * Adobe Systems Incorporated.
- *
- * (f) THE INFORMATION BELOW IS FURNISHED AS IS, IS SUBJECT TO
- * CHANGE WITHOUT NOTICE, AND SHOULD NOT BE CONSTRUED
- * AS A COMMITMENT BY ADOBE SYSTEMS INCORPORATED.
- * ADOBE SYSTEMS INCORPORATED ASSUMES NO RESPONSIBILITY
- * OR LIABILITY FOR ANY ERRORS OR INACCURACIES, MAKES NO
- * WARRANTY OF ANY KIND (EXPRESS, IMPLIED OR STATUTORY)
- * WITH RESPECT TO THIS INFORMATION, AND EXPRESSLY
- * DISCLAIMS ANY AND ALL WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR PARTICULAR PURPOSES AND NONINFRINGEMENT
- * OF THIRD PARTY RIGHTS.
- */
-
- /*
- * distillery.h
- *
- * Version: 2.0
- * Author: Ken Fromm
- * History:
- * 03-07-91 Added this comment.
- */
-
- /* operands */
- #define dis_int 1
- #define dis_real 2
- #define dis_string 3
- #define dis_literal 4
- #define dis_name 5
- #define dis_array 6
-
- /* path rendering operators */
- #define dis_f 7
- #define dis_s 8
- #define dis_clip 9
-
- /* text showing operators */
- #define dis_T 10
- #define dis_A 11
- #define dis_W 12
- #define dis_AW 13
-
- /* path construction operators */
- #define dis_m 14
- #define dis_lineto 15
- #define dis_L 16
- #define dis_r 17
- #define dis_R 18
- #define dis_l 19
- #define dis_x 20
- #define dis_y 21
- #define dis_X 22
- #define dis_Y 23
- #define dis_c 24
- #define dis_cp 25
-
- /* gstate parameter setting operators */
- #define dis_w 26
- #define dis_g 27
- #define dis_j 28
- #define dis_d 29
- #define dis_miter 30
- #define dis_cap 31
- #define dis_RGB 32
-
- /* font operators */
- #define dis_F 33
- #define dis_FF 34
- #define dis_DF 35
- #define dis_MF 36
-
- /* image operators */
- #define dis_IMASK 37
- #define dis_IMAGE 38
-
- #define dis_BPAGE 39
- #define dis_EPAGE 40
- #define dis_REMAP 41
- #define dis_RECODE 42
-
-